home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
BP7BUGS2.ZIP
/
TRASHSRC.ZIP
/
TEST.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-01-03
|
338b
|
21 lines
program test;
{ This program just does longint multiplies and reports any errors.
If you use Prot386, you shouldn't see any. }
uses
{ prot386, }
crt;
var
x,y,z : longint;
begin
x := 20;
y := 6;
repeat
z := x*y;
if z <> 120 then
writeln('Longint error! z=',z);
until keypressed;
end.